home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Wexl3.h < prev    next >
C/C++ Source or Header  |  1999-01-26  |  1KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Wexl3H
  3. #define Wexl3H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-verwaltete Komponenten
  14.     TButton *Button1;
  15.     TButton *Button2;
  16.     TButton *Button3;
  17.     TPanel *Panel1;
  18.     TPanel *Panel2;
  19.     void __fastcall Button1Click(TObject *Sender);
  20.     void __fastcall Button2Click(TObject *Sender);
  21.     void __fastcall Button3Click(TObject *Sender);
  22.     
  23. private:    // Benutzer-Deklarationen
  24. public:        // Benutzer-Deklarationen
  25.     __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.